projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
14a7fbd
)
* pcomplete.el (pcomplete-std-complete): Fix last minute typo.
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Fri, 29 Apr 2011 17:33:30 +0000
(14:33 -0300)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Fri, 29 Apr 2011 17:33:30 +0000
(14:33 -0300)
lisp/pcomplete.el
patch
|
blob
|
history
diff --git
a/lisp/pcomplete.el
b/lisp/pcomplete.el
index 5111e632c2ff7aa21e8ac982710b2f663b2ec543..2f5dcdfb5e8f5028b3c2a51f8185461fa7dd54f1 100644
(file)
--- a/
lisp/pcomplete.el
+++ b/
lisp/pcomplete.el
@@
-545,7
+545,7
@@
Same as `pcomplete' but using the standard completion UI."
;; variables to parse args, so there's no point autoloading it.
;; ;;;###autoload
(defun pcomplete-std-complete ()
- (let ((data
pcomplete-completions-at-point
))
+ (let ((data
(pcomplete-completions-at-point)
))
(completion-in-region (nth 0 data) (nth 1 data) (nth 2 data)
(plist-get :predicate (nthcdr 3 data)))))